home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 1997
/
HAM Radio 1997.iso
/
vcls
/
cltsvr
/
fileget.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-04-08
|
781b
|
46 lines
unit Fileget;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
StdCtrls, ExtCtrls;
type
TGetDLG = class(TForm)
OKBtn: TBitBtn;
CancelBtn: TBitBtn;
Bevel1: TBevel;
Label1: TLabel;
FileName: TEdit;
GroupBox1: TGroupBox;
rbASCII: TRadioButton;
rbBINARY: TRadioButton;
Label2: TLabel;
LocalName: TEdit;
rbEBCDIC: TRadioButton;
procedure FormCreate(Sender: TObject);
procedure FormShow(Sender: TObject);
private
public
end;
var
GetDLG: TGetDLG;
implementation
{$R *.DFM}
procedure TGetDLG.FormCreate(Sender: TObject);
begin
rbASCII.Checked := True;
end;
procedure TGetDLG.FormShow(Sender: TObject);
begin
FileName.SetFocus;
end;
end.